home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{E069E8D1-114F-11D1-B1EA-0080C863365E}#8.0#0"; "HotKey.ocx"
- Begin VB.Form Form1
- Caption = "Example"
- ClientHeight = 2490
- ClientLeft = 45
- ClientTop = 345
- ClientWidth = 3750
- LinkTopic = "Form1"
- ScaleHeight = 2490
- ScaleWidth = 3750
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command1
- Caption = "Exit"
- Height = 372
- Left = 1080
- TabIndex = 0
- Top = 1200
- Width = 1692
- End
- Begin HotKey.HotKeyReciver HotKeyReciver1
- Left = 1680
- Top = 360
- _ExtentX = 847
- _ExtentY = 847
- Interval = 100
- _RegisterA = $"example.frx":0000
- _RegisterB = $"example.frx":000A
- _RegisterC = $"example.frx":0014
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- End
- End Sub
- Private Sub HotKeyReciver1_HotKeyDown()
- MsgBox "KeyPress"
- End Sub
-